home *** CD-ROM | disk | FTP | other *** search
/ Virtual Top Model / Virtual Top Model - Disc 1.iso / modulos / mod-2.dxr / Internal_37_modulo 1.ls < prev    next >
Encoding:
Text File  |  1997-04-01  |  549 b   |  22 lines

  1. on mouseUp
  2.   global sPathIni
  3.   if rollOver(22) then
  4.     set the member of sprite 22 to member "Bt_Mod_A/1" of castLib "elementos graficos"
  5.     puppetSprite(22, 0)
  6.     updateStage()
  7.     go("inicio", "MOD-1.DIR")
  8.   end if
  9. end
  10.  
  11. on mouseDown
  12.   repeat while the stillDown
  13.     puppetSprite(22, 1)
  14.     if rollOver(22) then
  15.       set the member of sprite 22 to member "Bt_Mod_B/1" of castLib "elementos graficos"
  16.     else
  17.       set the member of sprite 22 to member "Bt_Mod_A/1" of castLib "elementos graficos"
  18.     end if
  19.     updateStage()
  20.   end repeat
  21. end
  22.